home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-11-27 | 1.2 KB | 33 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="1"
- "COUNT"="1"
- "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
- "NAME"="Y! Menu Title"
- "VERSION"="1.01"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Y! Menu Title"
- "DESCRIPTION 1"="You can change the title of the Y! menu in Yahoo Messenger here."
- "DESCRIPTION 2"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
- "DESCRIPTION 3"="NOTE #2: This option does not work with the new Yahoo! Messenger 4.x."
- "DESCRIPTION 4"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
- "AUTHOR"="Xteq Systems (Neil R. Turner)"
- "CONTACTURL"="http://www.xteq.com/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
-
- sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
-
- Sub Plugin_Initialize
- s=RegReadValue(sP)
- t=IniReadValue(s & "\cobrand.ini","COBRAND","Menu Caption")
- Call SetUIElement(1,t)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- t=GetUIElement(1)
- s=RegReadValue(sP)
- Call IniWriteValue(s & "\cobrand.ini","COBRAND","Menu Caption",t)
- End Sub
-
- Sub Plugin_Terminate
- End Sub